home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / crt / ds3100.md / gmon.h < prev    next >
C/C++ Source or Header  |  1990-11-05  |  2KB  |  87 lines

  1. /*    @(#)gmon.h 1.1 86/02/03 SMI    */
  2.  
  3.  
  4. struct phdr {
  5.     char    *lpc;
  6.     char    *hpc;
  7.     int        ncnt;
  8. };
  9.  
  10.     /*
  11.      *    histogram counters are unsigned shorts (according to the kernel).
  12.      */
  13. #define    HISTCOUNTER    unsigned short
  14.  
  15.     /*
  16.      *    fraction of text space to allocate for histogram counters
  17.      *    here, 1/2
  18.      */
  19. #define    HISTFRACTION    2
  20.  
  21.     /*
  22.      *    Fraction of text space to allocate for from hash buckets.
  23.      *    The value of HASHFRACTION is based on the minimum number of bytes
  24.      *    of separation between two subroutine call points in the object code.
  25.      *    Given MIN_SUBR_SEPARATION bytes of separation the value of
  26.      *    HASHFRACTION is calculated as:
  27.      *
  28.      *        HASHFRACTION = MIN_SUBR_SEPARATION / (2 * sizeof(short) - 1);
  29.      *
  30.      *    For the VAX, the shortest two call sequence is:
  31.      *
  32.      *        calls    $0,(r0)
  33.      *        calls    $0,(r0)
  34.      *
  35.      *    which is separated by only three bytes, thus HASHFRACTION is 
  36.      *    calculated as:
  37.      *
  38.      *        HASHFRACTION = 3 / (2 * 2 - 1) = 1
  39.      *
  40.      *    Note that the division above rounds down, thus if MIN_SUBR_FRACTION
  41.      *    is less than three, this algorithm will not work!
  42.      *
  43.      *    On a SUN, the shortest two-call sequence is:
  44.      *
  45.      *        jsr    a0@
  46.      *        jsr    a0@
  47.      *
  48.      *    which is separated by only two bytes! My interpretation of the
  49.      *    correct value for HASHFRACTION is:
  50.      *    
  51.      *        HASHFRACTION = floor( MIN_SUBR_SEPARATION / sizeof(short) )
  52.      *    or
  53.      *        HASHFRACTION = 2 div 2 
  54.      *    so I get the same results by different means!
  55.      */
  56. #define    HASHFRACTION    1
  57.  
  58.     /*
  59.      *    percent of text space to allocate for tostructs
  60.      *    with a minimum.
  61.      */
  62. #define ARCDENSITY    2
  63. #define MINARCS        50
  64.  
  65. struct tostruct {
  66.     char        *selfpc;
  67.     long        count;
  68.     unsigned short    link;
  69. };
  70.  
  71.     /*
  72.      *    a raw arc,
  73.      *        with pointers to the calling site and the called site
  74.      *        and a count.
  75.      */
  76. struct rawarc {
  77.     unsigned long    raw_frompc;
  78.     unsigned long    raw_selfpc;
  79.     long        raw_count;
  80. };
  81.  
  82.     /*
  83.      *    general rounding functions.
  84.      */
  85. #define ROUNDDOWN(x,y)    (((x)/(y))*(y))
  86. #define ROUNDUP(x,y)    ((((x)+(y)-1)/(y))*(y))
  87.